home *** CD-ROM | disk | FTP | other *** search
/ Kellogg's Amérique / Kellogg's Amérique / main.swf / scripts / fl / events / ComponentEvent.as next >
Text File  |  2020-08-04  |  1KB  |  39 lines

  1. package fl.events
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public class ComponentEvent extends Event
  6.    {
  7.       
  8.       public static const HIDE:String = "hide";
  9.       
  10.       public static const BUTTON_DOWN:String = "buttonDown";
  11.       
  12.       public static const MOVE:String = "move";
  13.       
  14.       public static const RESIZE:String = "resize";
  15.       
  16.       public static const ENTER:String = "enter";
  17.       
  18.       public static const LABEL_CHANGE:String = "labelChange";
  19.       
  20.       public static const SHOW:String = "show";
  21.        
  22.       
  23.       public function ComponentEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  24.       {
  25.          super(param1,param2,param3);
  26.       }
  27.       
  28.       override public function toString() : String
  29.       {
  30.          return formatToString("ComponentEvent","type","bubbles","cancelable");
  31.       }
  32.       
  33.       override public function clone() : Event
  34.       {
  35.          return new ComponentEvent(type,bubbles,cancelable);
  36.       }
  37.    }
  38. }
  39.